home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 February: Tool Chest / Dev.CD Feb 94.toast / Tool Chest / Development Platforms / MPW Related / MPW Interfaces / CIncludes / Packages.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-17  |  785 b   |  49 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        Packages.h
  3.  
  4.     Copyright:    © 1983-1993 by Apple Computer, Inc.
  5.                 All rights reserved.
  6.  
  7.     Version:    System 7.1 for ETO #11
  8.     Created:    Tuesday, March 30, 1993 18:00
  9.  
  10. */
  11.  
  12. #ifndef __PACKAGES__
  13. #define __PACKAGES__
  14.  
  15. #ifndef __TYPES__
  16. #include <Types.h>
  17. #endif
  18.  
  19.  
  20.  
  21. enum {
  22.  
  23.  listMgr = 0,                    /*list manager*/
  24.  dskInit = 2,                    /*Disk Initializaton*/
  25.  stdFile = 3,                    /*Standard File*/
  26.  flPoint = 4,                    /*Floating-Point Arithmetic*/
  27.  trFunc = 5,                    /*Transcendental Functions*/
  28.  intUtil = 6,                    /*International Utilities*/
  29.  bdConv = 7,                    /*Binary/Decimal Conversion*/
  30.  editionMgr = 11                /*Edition Manager*/
  31. };
  32.  
  33.  
  34.  
  35.  
  36. #ifdef __cplusplus
  37. extern "C" {
  38. #endif
  39. pascal void InitPack(short packID)
  40.  = 0xA9E5; 
  41. pascal void InitAllPacks(void)
  42.  = 0xA9E6; 
  43.  
  44. #ifdef __cplusplus
  45. }
  46. #endif
  47.  
  48. #endif
  49.